home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / Time_GetTime.c < prev    next >
C/C++ Source or Header  |  1991-04-22  |  1KB  |  51 lines

  1. /* 
  2.  * Time_GetTime.c --
  3.  *
  4.  *    Time_GetTime library routine.  
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/time/RCS/Time_GetTime.c,v 1.1 91/04/21 22:43:56 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <spriteTime.h>
  21. #include <sys/time.h>
  22.  
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * Time_GetTime --
  28.  *
  29.  *    Return the current time of day.  This is like gettimeofday(), 
  30.  *    but it's defined for use with Time objects.
  31.  *
  32.  * Results:
  33.  *    Returns the current time of day through resultPtr..
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.     
  41. void
  42. Time_GetTime(resultPtr)
  43.     Time *resultPtr;
  44. {
  45.     struct timeval nowUnix;
  46.  
  47.     (void)gettimeofday(&nowUnix, (struct timezone *)0);
  48.     resultPtr->seconds = nowUnix.tv_sec;
  49.     resultPtr->microseconds = nowUnix.tv_usec;
  50. }
  51.